home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- //
- // Copyright (C) 1991 Texas Instruments Incorporated.
- //
- // Permission is granted to any individual or institution to use, copy, modify,
- // and distribute this software, provided that this complete copyright and
- // permission notice is maintained, intact, in all copies and supporting
- // documentation.
- //
- // Texas Instruments Incorporated provides this software "as is" without
- // express or implied warranty.
- //
- *****************************************************************************
- *
- * Author: Martin Neath
- * Filename: site.imk
- * $Revision: $ $Date: $
- * Module: build/config
- * Purpose: PISCES project site configuration file
- * Abstract:
- * - The "project.imk" file contains default values for project
- * commands, variables, and pathnames.
- *
- * - The "site.imk" configuration file allows for customization
- * and specialization of items like system include directory
- *
- * - Use ifndef so that servers can override you if necessary, ie.
- *
- * #ifndef ABuildParameter
- * #define ABuildParameter myvalue
- * #endif
- *
- * Related Files: project.imk, imake.imk, imake.rul
- *
- * Creation Date: 05/13/90
- * Changed by\Date\Reason:
- *
- *****************************************************************************/
-
-
- /*###########################################################################*/
- /*# Site defaults for system directory pathnames #*/
- /*###########################################################################*/
-
- #ifndef SysIncDir
- #define SysIncDir DirName($(PATHSEP)usr$(PATHSEP)include)
- #endif
- #ifndef CPlusSysIncDir
- #define CPlusSysIncDir DirName($(PATHSEP)usr$(PATHSEP)include$(PATHSEP)CC)
- #endif
-
- /*###########################################################################*/
- /*# Site defaults for system directory pathnames #*/
- /*###########################################################################*/
-
- CINCDIR=SysIncDir /* system C header files */
- CPLUSINCDIR=CPlusSysIncDir /* system C++ header files */
-